home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Custom 1 RoughLeather preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_RoughLeather():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Luminance': 73,
- 'Angle': 315,
- 'LightColor': (0, 0, 0),
- 'Blur': 10,
- 'LeatherColor': (246, 133, 0),
- 'Sharpness': 63,
- 'Contrast': 5,
- }
-
- def Do(Environment):
- App.Do(Environment, 'RoughLeather', Preset_RoughLeather())
-